home *** CD-ROM | disk | FTP | other *** search
/ Aminet 19 / Aminet 19 (1997)(GTI - Schatztruhe)[!][Jun 1997].iso / Aminet / util / arc / ArcExtract1_0.lha / ArcExtract / Install < prev    next >
Text File  |  1997-04-17  |  2KB  |  76 lines

  1. ; ##########################################################################
  2. ; #                                                                        #
  3. ; #               ****  ArcExtract v1.0 Installer Script ****              #
  4. ; #                                                                        #
  5. ; #                                                                        #
  6. ; #                       Written by Alvaro Thompson                       #
  7. ; #                                                                        #
  8. ; ##########################################################################
  9. ;
  10. ; $VER: Install 1.0 (17.04.97)
  11.  
  12. (set #info
  13. (cat "\n\n- ArcExtract v1.0 -"
  14.      "\n\nThis program is EMailWare, although"
  15.      "\nthe program is still fully Copyrighted"
  16.      "\n\nWritten by Alvaro Thompson ©1997"
  17. ))
  18.  
  19.  
  20. (set #where
  21. (cat "Where should I copy the files?"
  22.      "\n(A drawer will be created)"
  23. ))     
  24.  
  25. (set #lib1
  26. (cat "I am now going to install the Reqtools.library"
  27. ))
  28.  
  29. (set #lib2
  30. (cat "I am now going to install the powerpacker.library"
  31. ))
  32.  
  33. (message #info)
  34.               
  35. (set destination
  36.  (askdir
  37.   (prompt #where)
  38.   (help @askdir-help)
  39.   (default "SYS:")
  40.  )
  41.  
  42. (makedir (tackon destination "ArcExtract" (infos)))
  43.  
  44. (set trgt (tackon destination "ArcExtract"))
  45.  
  46. (copyfiles
  47.   (source "")
  48.   (dest trgt)
  49.   (help @copyfiles-help)
  50.   (all)
  51. )
  52.  
  53. (copylib
  54.   (prompt #lib1)
  55.   (source (tackon trgt "libs/Reqtools.library"))
  56.   (dest "LIBS:")
  57.   (help @copylibs-help)
  58. )    
  59.  
  60. (copylib
  61.   (prompt #lib2)
  62.   (source (tackon trgt "libs/powerpacker.library"))
  63.   (dest "LIBS:")
  64.   (help @copylibs-help)
  65. )
  66.  
  67. (delete (tackon trgt "LIBS") (all))
  68. (delete (tackon trgt "Libs.info"))
  69. (delete (tackon trgt "Install"))
  70. (delete (tackon trgt "Install.info"))
  71.  
  72. (set @default-dest trgt)
  73.  
  74. (exit)
  75.